encoding/binary.coder.offset (field)

32 uses

	encoding/binary (current package)
		binary.go#L764: 	offset int
		binary.go#L771: 	x := d.buf[d.offset]
		binary.go#L772: 	d.offset++
		binary.go#L778: 		e.buf[e.offset] = 1
		binary.go#L780: 		e.buf[e.offset] = 0
		binary.go#L782: 	e.offset++
		binary.go#L786: 	x := d.buf[d.offset]
		binary.go#L787: 	d.offset++
		binary.go#L792: 	e.buf[e.offset] = x
		binary.go#L793: 	e.offset++
		binary.go#L797: 	x := d.order.Uint16(d.buf[d.offset : d.offset+2])
		binary.go#L798: 	d.offset += 2
		binary.go#L803: 	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
		binary.go#L804: 	e.offset += 2
		binary.go#L808: 	x := d.order.Uint32(d.buf[d.offset : d.offset+4])
		binary.go#L809: 	d.offset += 4
		binary.go#L814: 	e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
		binary.go#L815: 	e.offset += 4
		binary.go#L819: 	x := d.order.Uint64(d.buf[d.offset : d.offset+8])
		binary.go#L820: 	d.offset += 8
		binary.go#L825: 	e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
		binary.go#L826: 	e.offset += 8
		binary.go#L978: 	d.offset += dataSize(v)
		binary.go#L983: 	clear(e.buf[e.offset : e.offset+n])
		binary.go#L984: 	e.offset += n